*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	height: 100%;
	background-color: white;
	background-image: url(Images/bg.jpg);
	background-size: cover;
	background-position: center;
}

nav{
	background-color: #DC0A4B;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	font-family: Impact;
}

nav ul{
	padding: 10px;
	display: flex;
	list-style-type: none;
	gap: 1rem;
}

nav ul li a{
	border-right: 2px solid white;
	padding-right: 10px;
	text-decoration: none;
	font-size: 1.5rem;
	color: white;
}

nav ul li a:hover{
	text-decoration: underline;
}

#logo{
	letter-spacing: 2px;
	font-size: 2rem;
	color: white;
}

.inner_box{
	width: 70%;
	height: 100%;
	margin: 0 auto;
	padding: 2rem;
	background-color: white;
	border-right: 2px solid black;
	border-left: 2px solid black;
}

#tit{
	color: green;
	text-align: center;
	text-decoration: underline;
}

h3{
	font-family: sans-serif;
}

p{
	font-family: calibri;
}


@media (max-width: 680px){
	nav{
		flex-direction: column;
		gap: 3rem;
	}

	nav ul{
		border: 1px solid white;
		padding: 10px;
		order: 1;
	}

	nav ul li a{
		padding-right: 10px;
		border-right: 2px solid white;
		font-size: 1.2rem;
	}

	.inner_box{
		width: 75%;
		height: 40%;
	}

	#tit{
		font-size: 1rem;
	}

	h3{
		font-size: 0.9rem;
	}

	img{
		width: 200px;
	}

	p{
		font-size: 0.8rem;
	}
}